home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / mrorphans.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  26 lines

  1. /* RCSVER $Id: mrorphans.sql,v 1.1 1999-11-19 13:48:50-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        mrorphans.sql
  6. * Date:        08/18/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the mrorphans table. This table contains
  9. *        closed unmatched moneyroom counts.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE mrorphans
  13. (
  14.     subbatch_seq        NUMBER(38),    /* Number of subbatch */
  15.     cashbox_glid        NUMBER(38),    /* cashbox number */
  16.     cb_sernum        VARCHAR2(20),    /* cashbox ID */
  17.     cbcount_date        DATE,        /* Date of count in money room */
  18.     count_coin_totals    NUMBER(36,2),
  19.     count_bill_totals    NUMBER(36,2),
  20.     count_amt        NUMBER(36,2),    /* Cash amount from moneyroom */
  21.     clbatch_num        NUMBER(38),    /* Close batch number */
  22.     comments        VARCHAR2(500),    /* User comments */
  23.     excp_num        NUMBER(38),    /* Exception number */
  24.     CONSTRAINT pk_mrorphans PRIMARY KEY (subbatch_seq)
  25. );
  26.